################################################################################
##
## Mod Title:		easyUCP - short registration form
## MOD Author:		AmigaLink < webmaster@amigalink.de > (Markus Schmidt) http://www.EssenMitFreude.info
## Mod Description:	
##			
## Mod Version:		1.0 
##			
##
## Installation Level:	Easy 
## Installation Time:	3 Minutes 
##
## Files To Edit:	2
##			includes/usercp_register.php
##			templates/subSilver/profile_add_body.tpl
##
##
## Author Notes:
##			This MOD in made for use with the easyUCP MOD
##
################################################################################
##
##  The following sites also contain the latest version of this MOD: 
## 
##  http://www.phpBBhacks.com
##  http://www.phpBB.de
## 
##  Full support for this MOD can be obtained at: 
##
##  http://www.AmigaLink.de
##
################################################################################
##
##   2005-07-27 - Version 1.0
##	- First release
##
################################################################################
##  This hack is released under the GPL License. 
##  This hack can be freely used, but not distributed, without permission.
##  Intellectual Property Rights are retained by the hack author(s) 
##  listed above.
##
################################################################################

#
#----------[ OPEN ]-------------------------------------
#

includes/usercp_register.php

#
#----------[ FIND ]-------------------------------------
#

	if ( $ucp_mode == 'ucp_info' || $ucp_mode == '' )
	{
		$template->assign_block_vars('switch_ucp_info', array() );

#
#----------[ AFTER, ADD ]-------------------------------
#

		if ( $ucp_mode != '' )
		{
			$template->assign_block_vars('switch_ucp_info.switch_ucp_register_cut', array() );
		}

#
#----------[ FIND ]-------------------------------------
#

	if ( $ucp_mode == 'ucp_prefs' || $ucp_mode == '' )
	{
		$template->assign_block_vars('switch_ucp_prefs', array() );

#
#----------[ AFTER, ADD ]-------------------------------
#

		if ( $ucp_mode != '' )
		{
			$template->assign_block_vars('switch_ucp_prefs.switch_ucp_register_cut', array() );
		}

#
#----------[ OPEN ]-------------------------------------
#

templates/subSilver/profile_add_body.tpl

#
#----------[ FIND ]-------------------------------------
#

	<tr> 
	  <td class="row2" colspan="2"><span class="gensmall">{L_PROFILE_INFO_NOTICE}</span></td>
	</tr>

#
#----------[ AFTER, ADD ]-------------------------------
#

<!-- BEGIN switch_ucp_register_cut -->

#
#----------[ FIND ]-------------------------------------
#

	<tr> 
	  <td class="row1"><span class="gen">{L_YAHOO}:</span></td>
	  <td class="row2"> 
		<input type="text" class="post"style="width: 150px"  name="yim" size="20" maxlength="255" value="{YIM}" />
	  </td>
	</tr>

#
#----------[ AFTER, ADD ]-------------------------------
#

<!-- END switch_ucp_register_cut -->

#
#----------[ FIND ]-------------------------------------
#

	<tr> 
	  <td class="row1"><span class="gen">{L_NOTIFY_ON_REPLY}:</span><br />
		<span class="gensmall">{L_NOTIFY_ON_REPLY_EXPLAIN}</span></td>
	  <td class="row2"> 
		<input type="radio" name="notifyreply" value="1" {NOTIFY_REPLY_YES} />
		<span class="gen">{L_YES}</span>&nbsp;&nbsp; 
		<input type="radio" name="notifyreply" value="0" {NOTIFY_REPLY_NO} />
		<span class="gen">{L_NO}</span></td>
	</tr>

#
#----------[ AFTER, ADD ]-------------------------------
#

<!-- BEGIN switch_ucp_register_cut -->

#
#----------[ FIND ]-------------------------------------
#

	<tr> 
	  <td class="row1"><span class="gen">{L_BOARD_STYLE}:</span></td>
	  <td class="row2"><span class="gensmall">{STYLE_SELECT}</span></td>
	</tr>

#
#----------[ AFTER, ADD ]-------------------------------
#

<!-- END switch_ucp_register_cut -->

#
#----------[ FIND ]-------------------------------------
#

	<tr> 
	  <td class="row1"><span class="gen">{L_TIMEZONE}:</span></td>
	  <td class="row2"><span class="gensmall">{TIMEZONE_SELECT}</span></td>
	</tr>

#
#----------[ AFTER, ADD ]-------------------------------
#

<!-- BEGIN switch_ucp_register_cut -->

#
#----------[ FIND ]-------------------------------------
#

	<tr> 
	  <td class="row1"><span class="gen">{L_DATE_FORMAT}:</span><br />
		<span class="gensmall">{L_DATE_FORMAT_EXPLAIN}</span></td>
	  <td class="row2"> 
		<input type="text" name="dateformat" value="{DATE_FORMAT}" maxlength="14" class="post" />
	  </td>
	</tr>

#
#----------[ AFTER, ADD ]-------------------------------
#

<!-- END switch_ucp_register_cut -->

#
#----------[ SAVE AND CLOSE ALL FILES ]-----------------
#
# EoM